home *** CD-ROM | disk | FTP | other *** search
/ Paparazzi!: Tales of Tinseltown / Paparazzi - Tales of Tinseltown (1995)(Activision)(Disc 1 of 2).iso / pprazia2.dir / 01532_Script_1532 < prev    next >
Text File  |  1995-05-21  |  675b  |  30 lines

  1. on exitFrame
  2.   global gintegrity, bribe, whoIsIt
  3.  -- puppetsprite 3, true
  4.   repeat with j = 12 to 14
  5.     puppetsprite j, true
  6.   end repeat
  7.   
  8.   if whoIsIt = "Phillip" then
  9.     set bribe = 2000
  10.   else
  11.     if gIntegrity >= 30 then 
  12.       set bribe = 200
  13.       set the castNum of sprite 14 to cast "Give 200"
  14.       exit
  15.     end if
  16.     
  17.     if gIntegrity <= 29 & gIntegrity >= value(-30) then 
  18.       set bribe = 500
  19.       set the castNum of sprite 14 to cast "Give 500"
  20.       exit
  21.     end if
  22.     
  23.     if gIntegrity < value(-31)  then 
  24.       set bribe = 1000
  25.       set the castNum of sprite 14 to cast "Give 1000"
  26.       exit
  27.     end if
  28.   end if
  29.   
  30. end